+2007-07-11 Matthias Clasen <mclasen@redhat.com>
+
+ * gtk/gtkrange.c:
+ * gtk/gtkbindings.c:
+ * gtk/gtkscalebutton.c: Small doc fixes.
+
2007-07-11 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkplug.c:
* gtk_binding_set_new:
* @set_name: unique name of this binding set
*
- * Gtk+ maintains a global list of binding sets. Each binding set has
+ * GTK+ maintains a global list of binding sets. Each binding set has
* a unique name which needs to be specified upon creation.
*
* Return value: new binding set
class->slider_detail = "slider";
class->stepper_detail = "stepper";
+ /**
+ * GtkRange::value-changed:
+ * @range: the #GtkRange
+ *
+ * Emitted when the range value changes.
+ */
signals[VALUE_CHANGED] =
g_signal_new (I_("value_changed"),
G_TYPE_FROM_CLASS (gobject_class),
G_TYPE_NONE, 1,
G_TYPE_DOUBLE);
+ /**
+ * GtkRange::move-slider:
+ * @range: the #GtkRange
+ * @step: how to move the slider
+ *
+ * Virtual function that moves the slider. Used for keybindings.
+ */
signals[MOVE_SLIDER] =
g_signal_new (I_("move_slider"),
G_TYPE_FROM_CLASS (gobject_class),
/**
* GtkScaleButton::value-changed:
* @button: the object that received the signal
+ * @value: The new value
*
* Emitted when the value field has changed.
*